ae70e0299d93c0651161e2ad5488dae1f9398eea,app/src/processing/app/contrib/ContributionPanel.java,ContributionPanel,addPaneComponents,#,215
Before Change
// Set the minimum size of this pane to be the sum of the height of the
// progress bar and install button
d = installProgressBar.getPreferredSize();
Dimension d2 = installRemoveButton.getPreferredSize();
d.width = ContributionPanel.BUTTON_WIDTH;
d.height = d2.height;//d.height+d2.height;
rightPane.setMinimumSize(d);
rightPane.setPreferredSize(d);
}
After Change
// Set the minimum size of this pane to be the sum of the height of the
// progress bar and install button
Dimension dim =
new Dimension(ContributionPanel.BUTTON_WIDTH,
installRemoveButton.getPreferredSize().height);
rightPane.setMinimumSize(dim);
rightPane.setPreferredSize(dim);
}